***Antipattern***
Count: 4
POST  /applications [Singular last node with POST method.] 
POST  /applications/{app_id} [Singular last node with POST method.] 
POST  /applications/{app_id}/devices [Singular last node with POST method.] 
POST  /applications/{app_id}/devices/{dev_id} [Singular last node with POST method.] 

***Pattern***
Count: 7
DELETE  /applications/{app_id} [Pluralized last node with PUT|DELETE method.] 
DELETE  /applications/{app_id}/devices/{dev_id} [Pluralized last node with PUT|DELETE method.] 
GET  /applications/{app_id}/devices/{dev_id}regular methods.
GET  /applications/{app_id}/devicesregular methods.
PUT  /applications/{app_id} [Pluralized last node with PUT|DELETE method.] 
PUT  /applications/{app_id}/devices/{dev_id} [Pluralized last node with PUT|DELETE method.] 
PUT  /applications/{app_id}/devices [Pluralized last node with PUT|DELETE method.] 
